home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / Blitz2 / BlitzFaq / FaqLists / AvailMem.txt < prev    next >
Encoding:
Text File  |  1996-09-05  |  444 b   |  14 lines

  1. #MEMF_ANY=0         ;Any type of memory will do-
  2. #MEMF_PUBLIC=1
  3. #MEMF_CHIP=2
  4. #MEMF_FAST=4
  5. #MEMF_LOCAL=256     ;Memory that doesn't go away at RESET
  6. #MEMF_24BITDMA=512  ;DMAable memory within 24 bits of address
  7. #MEMF_KICK=1024     ;Memory that can be used for KickTags
  8. #MEMF_LARGEST=131072     ;Return largest chunk size
  9. #MEMF_TOTAL=524288  ;Return total size of memory
  10.  
  11. ;Return all FAST RAM in system:
  12.  
  13. size.l=AvailMem_(#MEMF_FAST|#MEMF_TOTAL)
  14.